home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / rj.arc / NOVELL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-06-05  |  896 b   |  34 lines

  1. /*
  2.  * novell.h
  3.  *
  4.  * This include file contains the function declarations for Novell
  5.  * Networking system functions
  6.  *
  7.  */
  8.  
  9. /* function declarations for those who want strong type checking
  10.  * on arguments to library function calls
  11.  */
  12.  
  13. #ifdef LINT_ARGS        /* arg. checking enabled */
  14.  
  15. int getusr(void);
  16. int brdcast(int ,char  *,char  *);
  17. int pipopen(int ,char  *);
  18. int pipclose(int ,char  *);
  19. int pipread(char  *);
  20. int pipwrite(int ,char  *,char  *);
  21. int semopen(char  *,int ,unsigned long  *,int  *);
  22. int semexam(unsigned long ,int  *,int  *);
  23. int semwait(unsigned long ,int );
  24. int semsig(unsigned long );
  25. int semclose(unsigned long );
  26.  
  27. #else
  28.  
  29. extern int getusr();
  30. extern int brdcast(), pipopen(), pipclose(), pipread(), pipwrite();
  31. extern int semopen(), semexam(), semwait(), semsig(), semclose();
  32.  
  33. #endif    /* LINT_ARGS */
  34.